home *** CD-ROM | disk | FTP | other *** search
/ Designer's Club 1998 July / Designer's Club 1998 July.iso / mac / Idea Source® / Main.Dir / 00005_go the frame.ls < prev    next >
Encoding:
Text File  |  1998-05-20  |  667 b   |  30 lines

  1. on exitFrame
  2.   go(the frame)
  3.   repeat with n = 8 to 12
  4.     if rollOver(n) then
  5.       set the visible of sprite n to 0
  6.       updateStage()
  7.     end if
  8.   end repeat
  9.   repeat with n = 8 to 12
  10.     if not rollOver(n) then
  11.       set the visible of sprite n to 1
  12.       updateStage()
  13.     end if
  14.   end repeat
  15.   repeat with n = 13 to 19
  16.     if rollOver(n) then
  17.       set the visible of sprite n to 0
  18.       set the visible of sprite (n + 15) to 1
  19.       updateStage()
  20.     end if
  21.   end repeat
  22.   repeat with n = 13 to 19
  23.     if not rollOver(n) then
  24.       set the visible of sprite n to 1
  25.       set the visible of sprite (n + 15) to 0
  26.       updateStage()
  27.     end if
  28.   end repeat
  29. end
  30.